forked from project-oak/hafnium-verification
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor api.rs, using VmState on Vm #27
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…-- Now it passes all tests.
- Use SpinLock<VmState> - Move vm-related functions into vm.rs will be continued...
…to `*const Vm`. Also holds for page pools
jeehoonkang
reviewed
Aug 18, 2019
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR이 커서 일단 일부 코멘트만 남깁니다. 몇번 더 iteration을 돌고 머지하면 좋을 것 같습니다.
고생하셨습니다!
… configure_stage1.
…prints error message for invalid string.
jeehoonkang
reviewed
Aug 19, 2019
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
일단 이정도만 남깁니다... 추후에 다시 리뷰 또 드리겠습니다.
jeehoonkang
reviewed
Aug 19, 2019
모두 resolve 했습니다! |
고생하셨어요- |
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#17, #20 의 일부입니다.
vcpu
와vm
의 내부를 직접 접근하는 코드를 getter/setter로 바꾸었습니다.{cpu, vm}.h
에는 forward declaration만 남겨두었습니다.offset.c
는 상수로 정의된 각 필드의 오프셋이 실제로 맞는 지 테스트하는 코드인데, 이것은aarch64.rs
에 옮겼습니다.Vm
중 락으로 보호해야 하는 데이터를VmState
로 추려서SpinLock
으로 보호했습니다.wait_entries
가 포함됩니다. 이것을 손보는 것은 다음 기회에.vcpus
가 포함되지 않습니다.vcpus
의 락으로 보호해야 하는 데이터는VCpuState
에 걸린 락으로 보호되기 때문입니다.api.rs
코드의 많은 부분을 변경했습니다.VmState
와 관련된api_*
함수들을VmState
의 메서드로 옮겼습니다.pub
s. #12)api_mailbox_clear
는 일견Mailbox
의 멤버 함수가 될 수 있을 것 같지만 나중에api_switch_to_primary
를 내부적으로 호출해서 간단하게는 되지 않습니다.Vm
관련 함수들을 리팩토링하면서unsafe
를 제거하거나 필요한 부분을 explicit하게 나타냈습니다.VmLocked
는SpinLockGuard<VmState>
를 저장하도록 바꾸고 싶었는데, C 코드에서vm_locked
내부의vm
을 사용하는 부분이 있어서 당장은 하지 않았습니다.spci_architected_message.c
를 Rust로 먼저 포팅해야 가능할 것으로 보입니다.api
내부의 함수가SpinLockGuard<VmState>
를 가지고 있는 상태로VmLocked
을 인자로 받는 C 함수를 호출하는 게 문제인데요. 이 C 함수가*mut VmLocked
를 받도록 바꾸면 될 것 같지만 어차피 포팅할 코드이므로 나중에...아직 #20 은 끝나지 않았습니다. 다음으로는
VCpu
에 있는 락을 수정할 예정입니다.여담으로, 이 리팩토링을 하면서 Rust에서
mut
키워드가 가지는 의미에 대해서 좀 더 깊게 이해하게 되었습니다:&mut
은 mutability가 아니라 배타적인 레퍼런스를 의미합니다. 배타적인 레퍼런스는 안전한 수정 가능성을 의미하지만, 역은 성립하지 않고 Rust에서는 안전한 수정을 보장하는 다른 방법이 많습니다.let mut x;
로 선언된 변수 또한&mut
레퍼런스를 만들 수 있다는 것을 의미합니다. 이게 꼭 이 변수를 수정한다는 뜻은 아닙니다. 예를 들어SpinLockGuard
는&mut self
를 받아서 mutable한 내부 레퍼런스를 줍니다.